home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 22
/
Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso
/
Aminet
/
util
/
moni
/
Scout.lha
/
Scout
/
arexx
/
poptofront.scout
< prev
next >
Wrap
Text File
|
1996-02-16
|
621b
|
23 lines
/**************************************************************************
* This ARexx script pops the window <window> to front. *
* USAGE: poptofront <window> *
* <window> can be title or address of the window. *
**************************************************************************/
if showlist('p','SCOUT.1') < 1 then do
say "Scout is not running!"
exit
end
address 'SCOUT.1'
parse arg window
options results
options failat 20
if window = '' then do
say "usage: poptofront <window>"
exit
end
PopToFront window